Welcome![Sign In][Sign Up]
Location:
Search - LZW algorithm

Search list

[Compress-Decompress algrithmsTestLzw

Description: 该软件用lzw算法完成对文件的压缩和解压缩,在vc6。0下完成具体的测试-LZW algorithm of the software used to complete the document compression and decompression, in vc6. 0 under specific test
Platform: | Size: 1356800 | Author: 马锁 | Hits:

[source in ebooklzwalgothim

Description: LZW压缩算法 一种新型的LZW压缩算法,请大家观看了-LZW compression algorithm a new type of LZW compression algorithm, please watch the U.S.
Platform: | Size: 35840 | Author: fantianchen | Hits:

[Compress-Decompress algrithmsgifcode

Description: 利用lzw算法将.bmp图像文件压缩成.gif文件 点击打开载入图像,点击压缩后,显示压缩后图像,并将图像保存到同样的文件夹下 -Using LZW algorithm. Bmp image files compressed into. Gif file Click to open loading images, click on the compressed, showing the compressed images, and images saved to the same folder
Platform: | Size: 31744 | Author: 解旻 | Hits:

[Multimedia programlzw

Description: LZW压缩算法是一种新颖的压缩方法。此文件为LZW压缩算法的仿真源文件。-LZW compression algorithm is a novel compression method. This document is LZW compression algorithm for the simulation of the source file.
Platform: | Size: 292864 | Author: 燕子 | Hits:

[Compress-Decompress algrithmsLZW

Description: 此算法是一个压缩算法,lwz在lz77,lz78的基础上改进的一种算法。-This algorithm is a compression algorithm, lwz in lz77, lz78 improved based on an algorithm.
Platform: | Size: 1024 | Author: renqiang | Hits:

[Software EngineeringTextCompresionBasedOnLZW

Description: 本论文,利用LZW算法,它是利用字典结构实现了对文本的压缩和解压。并且对字典的结构进行了改进,使用了两个字段来表示,减小了内存的使用,和运行时间。-In this paper, using LZW algorithm, which is the use of the dictionary structure of the text of the compression and decompression. And the structure of the dictionary has been improved, the use of the two fields to express, to reduce memory use, and run-time.
Platform: | Size: 117760 | Author: 胡存英 | Hits:

[Compress-Decompress algrithmsLZW

Description: c语言压缩算法,LZW.高效率,适合于对大文件进行压缩.-c language compression algorithm, LZW. high efficiency, suitable for large files are compressed.
Platform: | Size: 3072 | Author: elipas | Hits:

[Graph programViewImage

Description: 图像编码源代码,包括:PCX, GIF,LZW算法和GIF数据压缩,JPEG,TGA,TIFF等-Image coding the source code, including: PCX, GIF, LZW and GIF data compression algorithm, JPEG, TGA, TIFF, etc.
Platform: | Size: 7168 | Author: 赵堃 | Hits:

[GDI-BitmaplzwMatlab

Description: Implements a TIF compatible LZW encoding/decoding algorithm
Platform: | Size: 106496 | Author: xj | Hits:

[Compress-Decompress algrithmsLZW

Description: LZ77算法与模式匹配KMP算法的结合及算法实现,包含: LZ77.doc t1.txt t2.txt t3.txt cc3260mt.dll borlndmm.dll 测试cpp1.cpp 压缩程序使用说明.txt-LZ77 algorithm and pattern-matching algorithm for the combination of KMP and algorithm, including: LZ77.doct1.txtt2.txtt3.txtcc3260mt.dllborlndmm.dll testing procedures for use cpp1.cpp compression. Txt
Platform: | Size: 1314816 | Author: wj | Hits:

[OtherLZW_src

Description: lzw算法的实现,包括各种平台的支持和各种优化选项-LZW algorithm, including support for a variety of platforms and a variety of optimization options
Platform: | Size: 21504 | Author: luo dong | Hits:

[Compress-Decompress algrithmsLZW

Description: lzw压缩(matlab源程序)欢迎大家下载 里面有实例-LZW compression (matlab source code) are welcome to download there are examples of
Platform: | Size: 3072 | Author: liaup | Hits:

[Compress-Decompress algrithmsLZW

Description: 用VC++实现LZW算法,还不错,值得一看-Using VC++ realize LZW algorithm, but also well worth a visit
Platform: | Size: 63488 | Author: 王绍鹏 | Hits:

[Compress-Decompress algrithmsLZW_Demo

Description: LZW算法的实现,用C语言编写的,LZW算法是一个压缩算法,压缩比例很高!喜欢了解的人看看吧!-lzw algorithm implementation!
Platform: | Size: 23552 | Author: 陈云星 | Hits:

[Internet-Networklzw

Description: lzw 算法, 还是蛮有用的哦,是c++语言的-lzw algorithm, or quite used to Oh, is c++ language
Platform: | Size: 10240 | Author: jason | Hits:

[Compress-Decompress algrithmsLZW_DLL

Description: 将LZW算法封装为DLL的程序,可供C#等调用-LZW algorithm to process package for the DLL for C#, such as call
Platform: | Size: 11264 | Author: lxz | Hits:

[Windows Developlzw

Description: 实现lzw词典编码方法 Lzw编码算法的设计思路: 1.开始时的词典包含所有的根(先将所有单个字符编码),当前缀P时空的; 2.当前字符(C)=字符流中的下一个字符; 3.判断缀-符串P+C是否在词典中 A如果“是”:P=P+C//(用C扩展P) B.如果“否”: a 把代表当前前缀P的马子输出到码字流; b 把缀-符串P+C添加到词典; c 令P=C//(现在的P仅包含一个字符C); 4. 判断字符流中是否还有码字要译 (1)如果是,就返回到2; (2)如果否 a 把代表当前前缀P的码字输出到码字流; b 结束。. -Coding method to achieve lzw dictionary coding algorithm Lzw design ideas: 1. The beginning of the dictionary contains all the root (first of all a single character encoding), the current time is made up of P 2. The current character (C) = the next character stream character 3. judge up- at string P+ C is in the dictionary, if A " is" : P = P+ C// (use C extension of P) B. If " no" : a prefix P to the representative of the current output of the commode to the code word stream b put up- at string P+ C added to the dictionary c so that P = C// (the P now contains only one character C) 4. to determine whether there are character stream code words to translate (1) If yes, on the return to the 2 (2) If it has a prefix P to the representative of the current output of the code word to code word stream b end. .
Platform: | Size: 1024 | Author: 符晓娟 | Hits:

[JSP/Javalzw_src

Description: this java lzw algorithm implementation in java. I dowloaded from a website and thought of putting it here so other member can use it too. :)-this is java lzw algorithm implementation in java. I dowloaded from a website and thought of putting it here so other member can use it too. :)
Platform: | Size: 2048 | Author: bittersea | Hits:

[Compress-Decompress algrithmsgif-lzw

Description: 应用于gif动画格式的lzw解压缩算法程序,实现gif动画的现实-Gif animation format used in the decompression algorithm lzw procedures, to achieve realistic animation gif
Platform: | Size: 4096 | Author: 雷鹏勇 | Hits:

[Compress-Decompress algrithmsshabnam-chatserver

Description: ChatServer with Compressing a text by Lzw Algorithm
Platform: | Size: 27648 | Author: shabnam | Hits:
« 1 2 34 5 6 7 8 9 10 ... 16 »

CodeBus www.codebus.net